home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 1998 May: Tool Chest
/
Dev.CD May 98 TC.toast
/
Tool Chest
/
Interapplication Communication
/
AE Tools
/
AEGizmos 1.4.1
/
Headers
/
AEPrint.h
< prev
next >
Encoding:
Amiga (detected)
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-03-17
|
415 b
|
25 lines
|
[
TEXT/MMCC
]
/*
* AEPrint.h Copyright ©1991-1993 Apple Computer, Inc.
*/
#pragma once
#ifndef __AEPRINT__
#define __AEPRINT__
#ifndef __APPLEEVENTS__
#include <AppleEvents.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
OSErr AEPrint( AEDesc *desc, char *bufStr, long bufSize );
OSErr AEPrintSize( AEDesc *desc, long *stringLength ); // Just computes size (len+1) of string
#ifdef __cplusplus
}
#endif
#endif